From: kaf24@firebug.cl.cam.ac.uk Date: Tue, 25 Apr 2006 07:54:36 +0000 (+0100) Subject: Fix "make debug" in Xen subtree. Pointed out by Aravindh X-Git-Tag: archive/raspbian/4.8.0-1+rpi1~1^2~16117^2~10 X-Git-Url: https://dgit.raspbian.org/%22http://www.example.com/cgi/success//%22http:/www.example.com/cgi/success/?a=commitdiff_plain;h=7a3a16a1cafd3a76fa3d73e932e8dd5fb006e4ba;p=xen.git Fix "make debug" in Xen subtree. Pointed out by Aravindh at Unisys. Signed-off-by: Keir Fraser --- diff --git a/xen/Makefile b/xen/Makefile index 18e651ad89..a349fd43de 100644 --- a/xen/Makefile +++ b/xen/Makefile @@ -13,12 +13,8 @@ default: build .PHONY: dist dist: install -.PHONY: debug -debug: - objdump -D -S $(TARGET)-syms > $(TARGET).s - .PHONY: build install clean cscope TAGS tags -build install clean cscope TAGS tags:: +build install debug clean cscope TAGS tags:: make -f Rules.mk _$@ .PHONY: _build @@ -38,6 +34,10 @@ _install: $(TARGET).gz $(INSTALL_DATA) include/public/io/*.h $(DESTDIR)/usr/include/xen/io $(INSTALL_DATA) include/public/COPYING $(DESTDIR)/usr/include/xen +.PHONY: _debug +_debug: + objdump -D -S $(TARGET)-syms > $(TARGET).s + .PHONY: _clean _clean: delete-unfresh-files $(MAKE) -C tools clean